Skip to main content
Version: 1.0.2

Get Forex

The Get Forex API allows the originating bank to validate the source currency provided in the message and sends the daily foreign exchange rate back for provided currency pairs.

The Get Forex method requests the originating bank to provide both the source and the target currency ISO codes in the request, with or without providing an effective date. When an effective date is provided, the Get Forex method response will contain the Visa B2B Connect foreign exchange rate for the requested processing day. Historical rates can also be returned by providing a past date as the effective date.

When using Get Forex, the source currency is intended to be the currency of the originator of the payment. The target currency will be the currency of the payment recipient.

Method: POST

{{URL}}/jsonrpc

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParameterDescription

id

Mandatory

String

Unique ID for each request

jsonrpc

Mandatory

String

JSON RPC VERSION - should be "2.0"

method

Mandatory

String

Method Name - should be "VisaService.FXRate"

params

Mandatory

Object

api

Mandatory

Object

credential

Mandatory

String

API credential provided by NetXD

signature

Mandatory

String

Signature of the digitally signed payload

payload

Mandatory

Object

sourceCurrencyAlphaCode

Mandatory

String

Currency of the Originator of the payment (Valid ISO 4217 3-alpha currency code). Field Length: 3 characters

targetCurrencyAlphaCode

Mandatory

String

Currency of the payment recipient (Valid ISO 4217 3-alpha currency code). Field Length: 3 characters

effectiveDate

Optional

String

Requested Processing Day


curl --location --globoff '{{URL}}/jsonrpc' \
--header 'Content-Type: application/json' \
--data '{"id":"1","jsonrpc":"2.0","method":"VisaService.FXRate","params":{"api":{"credential":"Basic c3VwcG9ydCsxQG5ldHN5cy1pbmMuY29tOjM5ZDYxOGJkNTVmNzQ4ZGQ4ZWY4NWI5NWQxY2RlNDE5","signature":"{{signature}}"},"payload":{"sourceCurrencyAlphaCode":"AED","targetCurrencyAlphaCode":"EUR","effectiveDate":"2022-09-07"}}}'

Body


{
"id": "1",
"jsonrpc": "2.0",
"method": "VisaService.FXRate",
"params": {
"api": {
"credential": "Basic c3VwcG9ydCsxQG5ldHN5cy1pbmMuY29tOjM5ZDYxOGJkNTVmNzQ4ZGQ4ZWY4NWI5NWQxY2RlNDE5",
"signature": "{{signature}}"
},
"payload": {
"sourceCurrencyAlphaCode": "AED",
"targetCurrencyAlphaCode": "EUR",
"effectiveDate": "2022-09-07"
}
}
}

Response: 201

Response Parameters
ParameterDescription

jsonrpc

String

JSON RPC VERSION – should be "2.0"

result

Object

effectiveConversionRate

Decimal

Conversion rate of source and target currencies

Ex: 0.2465009176

targetCurrency

String

Target currency of conversion

Ex: "EUR"

sourceCurrency

String

Source currency of conversion

Ex: "AED"

rateExpiry

String

Date and time of rate expiry

Ex: "2023-05-26T11:59:59Z"

rateId

String

ID of rate conversion

Ex: "349e91acdb02491194776702c21187bd"

effectiveConversionRateWithMarkup

Decimal

Total conversion rate with markup

Ex: 0.2465009176

id

String

Unique ID of request

Ex: "1"


{
"jsonrpc": "2.0",
"result": {
"effectiveConversionRate": 0.2465009176,
"targetCurrency": "EUR",
"sourceCurrency": "AED",
"rateExpiry": "2023-05-26T11:59:59Z",
"rateId": "349e91acdb02491194776702c21187bd",
"effectiveConversionRateWithMarkup": 0.2465009176
},
"id": "1"
}